Created
November 27, 2016 19:05
-
-
Save soapdog/1a35caa024a1b36d4c0c1f41d4a50dc1 to your computer and use it in GitHub Desktop.
Sample docker compose file for developing Sailor framework based web apps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
web: | |
depends_on: | |
- db | |
build: academy-server/. | |
image: amoralabs/academy | |
ports: | |
- "8080:80" | |
- "8443:443" | |
volumes: | |
- ../:/var/www/html/ | |
environment: | |
ACADEMY_DB_HOST: database | |
ACADEMY_DB_USER: theuser | |
ACADEMY_DB_PASSWORD: thepassword | |
links: | |
- "db:database" | |
db: | |
image: mysql | |
ports: | |
- "3307:3306" | |
volumes: | |
- ./academy-db:/docker-entrypoint-initdb.d | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: thepassword | |
MYSQL_DATABASE: thedatabase | |
MYSQL_USER: theuser | |
MYSQL_PASSWORD: supersecretpassword | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@fabiomen10 glad I could help. I haven't touched that in a long while. You might want to learn more about Sailor, they're looking for new maintainers. Also, I suspect that Lapis Framework is the one that is most popular these days.