Skip to content

Instantly share code, notes, and snippets.

@michimau
Last active July 14, 2019 12:10
Show Gist options
  • Save michimau/e054e2d17dfc51b9204d322826ecec3c to your computer and use it in GitHub Desktop.
Save michimau/e054e2d17dfc51b9204d322826ecec3c to your computer and use it in GitHub Desktop.
pydio_docker-compose
version: '2'
services:
cells:
image: pydio/cells:latest
restart: always
volumes:
- data:/root/.config/pydio/cells/data
ports:
- 8080:8080
environment:
- CELLS_BIND=0.0.0.0:8080
- CELLS_EXTERNAL=http://mypydio.com
- CELLS_NO_SSL=1
mysql:
image: mysql:5.7
restart: always
environment:
MYSQL_ROOT_PASSWORD: P@ssw0rd
MYSQL_DATABASE: cells
MYSQL_USER: pydio
MYSQL_PASSWORD: P@ssw0rd
command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
ports:
- 3306:3306
proxy:
image: jmferrer/apache2-reverse-proxy
restart: always
ports:
- 80:80
volumes:
- /home/lubuntu/apache_pydio_conf/apache2:/etc/apache2
volumes:
data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment