2023-09-22 22:58:58 +02:00
|
|
|
# Use root/example as user/password credentials
|
|
|
|
version: '3.1'
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
db:
|
|
|
|
image: percona
|
2023-09-25 12:57:17 +02:00
|
|
|
container_name: omeka-percona
|
2023-09-22 22:58:58 +02:00
|
|
|
restart: always
|
2023-09-25 11:19:02 +02:00
|
|
|
env_file:
|
|
|
|
- sample.env
|
|
|
|
ports:
|
|
|
|
- 127.0.0.1:3306:3306
|
2023-09-25 11:44:17 +02:00
|
|
|
|
|
|
|
omeka:
|
|
|
|
image: omeka-docker-dev
|
2023-09-25 12:57:17 +02:00
|
|
|
container_name: omeka-s
|
2023-09-25 11:44:17 +02:00
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- 127.0.0.1:8080:8080
|
|
|
|
volumes:
|
2023-09-25 12:57:17 +02:00
|
|
|
- ./config/nginx.conf:/etc/nginx/nginx.conf
|
|
|
|
- ./config/database.ini:/var/www/html/omeka-s/config/database.ini
|
|
|
|
- ./assets/modules/:/var/www/html/omeka-s/modules/
|
|
|
|
- ./assets/themes/:/var/www/html/omeka-s/themes/
|
2023-09-22 22:58:58 +02:00
|
|
|
|
2023-09-25 11:44:17 +02:00
|
|
|
#volumes:
|
|
|
|
# omeka:
|
|
|
|
# external: true
|