Skip to content

Commit

Permalink
added a compose configuration that works
Browse files Browse the repository at this point in the history
the docker compose config builds the apache image
  • Loading branch information
diraneyya committed Oct 4, 2024
1 parent f7cf038 commit f7c3e8f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
services:
backdrop:
build:
context: ./1/apache
ports:
- 8088:80
environment:
BACKDROP_DB_HOST: db
BACKDROP_DB_USER: backdrop
BACKDROP_DB_PASSWORD: backdrop

db:
image: mysql
environment:
MYSQL_USER: backdrop
MYSQL_PASSWORD: backdrop
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_DATABASE: backdrop

0 comments on commit f7c3e8f

Please sign in to comment.