skip to Main Content

Can I extend a shared docker-compose service twice (multiple times)?

I have a maria-db database docker-compose.yml: version: '3.8' services: mariadb: image: mariadb:latest container_name: mariadb restart: always environment: MYSQL_ROOT_PASSWORD: admin MYSQL_DATABASE: "wordpress3,wordpress4" MYSQL_USER: mohsin MYSQL_PASSWORD: 12345678 volumes: - mariadb_data:/var/lib/mysql networks: - wordpress_network networks: wordpress_network: external: true name: wordpress_network volumes: mariadb_data: I…

VIEW QUESTION

Prepopulating PostGIS with OSM data works with Docker Desktop, but not with Azure pipeline

When I build the Dockerfile below by running the command manually at a Windows notebook docker build -f Dockerfile --no-cache --tag my-postgis:16-3.4 --build-arg DOWNLOAD_URLS="https://download.geofabrik.de/europe/germany/berlin-latest.osm.pbf https://download.geofabrik.de/europe/germany/hamburg-latest.osm.pbf" --build-arg OSM_PASSWORD=osm_password --build-arg POSTGIS_TAG=16-3.4 . then it works as expected and the prefilled PostgreSQL database…

VIEW QUESTION
Back To Top
Search