Skip to content

Commit

Permalink
docker compose to run irma-demos local
Browse files Browse the repository at this point in the history
  • Loading branch information
saravahdatipour committed Nov 12, 2024
1 parent a5c769e commit a3f2a27
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
services:
php:
build: .
ports:
- "8080:8080"
networks:
- app-network
depends_on:
- irma
environment:
- IRMA_SERVER_URL=http://irma:8088 # This maps the IRMA server URL

irma:
build: https://github.com/privacybydesign/irmago.git
ports:
- "8088:8088"
command: server --no-auth --no-tls
networks:
- app-network

networks:
app-network:
driver: bridge

0 comments on commit a3f2a27

Please sign in to comment.