Skip to content

Commit

Permalink
Oracle database integration to compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
aavanesy committed Jan 18, 2024
1 parent df9ec71 commit 661b209
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ volumes:
driver: local
maria-db:
driver: local
oracle-data:
driver: local
services:
# https://www.beekeeperstudio.io/blog/how-to-use-mariadb-with-docker
mysql:
Expand Down Expand Up @@ -55,3 +57,17 @@ services:
- postgres-db:/var/lib/postgresql/data
ports:
- "5432:5432"

#https://www.oracle.com/database/technologies/oracle-database-software-downloads.html#db_free
# entreprise version requires access and license
oracle:
image: container-registry.oracle.com/database/free:latest
container_name: oracle
ports:
- "1521:1521"
#environment:
# doesn't work...
# ORACLE_USER: compose
# ORACLE_PASSWORD: 'password1'
volumes:
- oracle-data:/opt/oracle/oradata

0 comments on commit 661b209

Please sign in to comment.