Spaces:
Runtime error
Runtime error
File size: 402 Bytes
2c63ca5 8a7957e 2c63ca5 063b1c8 2c63ca5 395244a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Use the specified image from Docker Hub
FROM williamjackson/excalibur:0.4.3
# Set the working directory
WORKDIR /excalibur
# Create a volume for your data directory (local path on your machine)
VOLUME ["~/excalibur-data"]
# Ensure correct permissions for the directory
RUN chmod -R 777 /excalibur
# Initialize the database (this will be run when the container starts)
CMD ["excalibur", "initdb"]
|