Skip to content

Instantly share code, notes, and snippets.

@soapdog
Created November 27, 2016 19:05
Show Gist options
  • Save soapdog/1a35caa024a1b36d4c0c1f41d4a50dc1 to your computer and use it in GitHub Desktop.
Save soapdog/1a35caa024a1b36d4c0c1f41d4a50dc1 to your computer and use it in GitHub Desktop.
Sample docker compose file for developing Sailor framework based web apps
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
@soapdog
Copy link
Author

soapdog commented Jun 29, 2021

@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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment