Skip to content

Commit

Permalink
Merge pull request #1 from Paul-Van-Uytvinck/main
Browse files Browse the repository at this point in the history
Initial docker-compose file
  • Loading branch information
SDKAAA authored Jan 25, 2024
2 parents ff427f5 + 4611939 commit cfb497a
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: digitharium
services:
keycloak:
container_name: digitharium_keycloak
image: quay.io/keycloak/keycloak
ports:
- "53531:8080"
environment:
KEYCLOAK_ADMIN: "admin"
KEYCLOAK_ADMIN_PASSWORD: "admin"
command:
- start-dev

drupal:
container_name: digitharium_drupal
image: drupal
ports:
- "8081:80"
environment:
DB_HOST: "drupal_mysql"
DB_USER: "user"
DB_PASS: "password"
depends_on:
- drupal_mysql

# DBs

drupal_mysql:
container_name: digitharium_drupal_mysql
image: container-registry.oracle.com/mysql/community-server
environment:
MYSQL_ROOT_PASSWORD: "root_password"
MYSQL_DATABASE: "drupal_mysql"
MYSQL_USER: "user"
MYSQL_PASSWORD: "password"
volumes:
- database:/var/lib/myqsql
ports:
- "3306:3306"
volumes:
database:

0 comments on commit cfb497a

Please sign in to comment.