Last active
November 14, 2023 08:55
-
-
Save vitaminac/851e2caa9337b31568844cfe53ef6806 to your computer and use it in GitHub Desktop.
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: "3.9" | |
services: | |
prestashop: | |
image: yobasystems/alpine-prestashop | |
environment: | |
MYSQL_DATABASE: prestadb | |
MYSQL_PASSWORD: prestapass | |
MYSQL_ROOT_PASSWORD: '' | |
MYSQL_USER: prestauser | |
URL: "localhost:8080" | |
PS_INSTALL_AUTO: 1 | |
DEV_MODE: 1 | |
PS_FOLDER_ADMIN: "admin4365218asd897fasd54f78asdf57" | |
ports: | |
- "8080:80" | |
volumes: | |
- prestashop-php:/usr/html | |
networks: | |
- prestashop-net | |
restart: always | |
depends_on: | |
- mysql | |
mysql: | |
environment: | |
MYSQL_DATABASE: prestadb | |
MYSQL_PASSWORD: prestapass | |
MYSQL_ROOT_PASSWORD: '' | |
MYSQL_USER: prestauser | |
image: yobasystems/alpine-mariadb:10.4.17 | |
volumes: | |
- prestashop-db:/var/lib/mysql | |
networks: | |
- prestashop-net | |
networks: | |
prestashop-net: | |
volumes: | |
prestashop-php: | |
prestashop-db: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment