# doc : https://docs.docker.com/compose/compose-file/compose-versioning/ # version : https://docs.docker.com/compose/compose-file/compose-versioning/ # version to download : https://github.com/docker/compose/releases/ # had to remove the apt version because it was not up to date (sudo apt remove docker-compose) # then install as recommended : curl -SL https://github.com/docker/compose/releases/download/v2.10.2/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose # or (neat) : https://github.com/docker/compose/releases/download/v2.10.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose version: "3.8" services: # --------------------------------- nginx: restart: on-failure networks: - inception ports: - "443:443" - "80:80" build: ./requirements/nginx image: nginx container_name: nginx_container depends_on: wordpress: condition: service_started # --------------------------------- mariadb: restart: on-failure env_file: .env networks: - inception # volumes: # - db_volume:/var/lib/mysql build: context: ./requirements/mariadb args: - DB_NAME=${DB_NAME} - DB_USER=${DB_USER} - DB_PSWD=${DB_PSWD} image: mariadb container_name: mariadb_container # --------------------------------- wordpress: restart: on-failure env_file: ./.env networks: - inception volumes: - type: volume source: wp_volume target: /var/www/html bind: create_host_path: true build: ./requirements/wordpress image: wordpress container_name: wordpress_container depends_on: mariadb: condition: service_started # specify path to named volumes : https://docs.docker.com/compose/compose-file/compose-file-v3/#volume-configuration-reference volumes: wp_volume: driver: local driver_opts: type: none o: "bind" device: /home/${LOGIN}/data/wp_volume # db_volume: # driver: local # driver_opts: # type: none # o: "bind" # mountpoint: /home/${LOGIN}/data/db_volume networks: inception: