Skip to content

Instantly share code, notes, and snippets.

@godbout
Created April 18, 2018 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save godbout/cb6e1bf6eebfe201974e015d4982ef34 to your computer and use it in GitHub Desktop.
Save godbout/cb6e1bf6eebfe201974e015d4982ef34 to your computer and use it in GitHub Desktop.
docker-compose.yml file for starting a tiki dev environment on your beautiful machine
version: '3'
services:
app:
image: godbout/tiki:latest
ports:
- 8080:80
volumes:
- .:/srv/www/app
links:
- db
environment:
DB_HOST: db
DB_DATABASE: tiki
DB_USERNAME: app
DB_PASSWORD: password
db:
image: mariadb:10
ports:
- 13306:3306
environment:
MYSQL_DATABASE: tiki
MYSQL_USER: app
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment